home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 30
/
Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso
/
Aminet
/
dev
/
mui
/
bcc_src.lha
/
Parser
/
InterDef.h
< prev
next >
Wrap
C/C++ Source or Header
|
1998-02-24
|
430b
|
27 lines
#ifndef INTERDEF_H
#define INTERDEF_H
#include "TextItem.h"
#include "ClassDef.h"
class InterDef: public TextItem {
char fn[120];
unsigned long TagVal;
public:
char *FullName( void );
unsigned long GetTagVal( void );
InterDef( char *name, short len, ClassDef *cld, short sw = 0 ) : TextItem( name, len ) { switches = sw; cd = cld; }
ClassDef *cd;
unsigned short switches;
virtual char GetTagType();
};
#endif